home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk74 / mpaint / mpaint.doc < prev    next >
Text File  |  1995-03-19  |  4KB  |  119 lines

  1. /*============================================================================*/
  2. /*  MPaint.Doc: User documentation for MPaint V0.60                  */
  3. /*============================================================================*/
  4.  
  5. Menus:
  6.     File:
  7.     Load:
  8.         Brings up ARP file requester, choose a vaild IFF ILBM
  9.         and it will load.
  10.  
  11.     Save:
  12.         Saves current picture under old file name
  13.         (Be carefull!, only keeps one old filename, if you have multiple
  14.          pages, does not keep a seperate filename for each(Yea, I know,
  15.          I will fix this))
  16.     Saveas:
  17.         Brings up ARP file requster, choose a filename to save as.
  18.  
  19.     Tool Window:
  20.         Opens drawing tools window, if already open, closes. See Windows.
  21.     Palette Window:
  22.         Opens color palette window, if already open, closes. See Windows.
  23.     Hist Window:
  24.         Opens a histogram window, then counts the pixel useage on
  25.         current picture, if already open, closes. See Windows.
  26.     Coord/Grid Window:
  27.         Opens Coordinates/Grid window, if already open, closes. See Windows.
  28.     Spare:
  29.         New Page:
  30.         Creates another drawing page same size and depth as
  31.         current one, if enough CHIP memory available.
  32.         Each page may have its own color palette.
  33.         Next Page:
  34.         Displays next page in page list. Make multiple pages, hold
  35.         down right-Amiga N, cheap animation.
  36.         Delete Page:
  37.         Removes current page from existence. Careful, no second chance.
  38.         If last page, no effect.
  39.     Toggle Title:
  40.         Turns title bar on/off.
  41.     Toggle Pointer:
  42.         Turns intuition pointer on/off, for taking screen shots.
  43.     About:
  44.         Display about requesters.
  45.     Quit:
  46.         Leave program. Careful, no second chance.
  47.  
  48.     DrawOp:
  49.     same as in tool window, see windows.
  50.  
  51.     DrawMode:
  52.     JAM2:
  53.         Normal drawing mode.
  54.     COMPLEMENT:
  55.         Inverses colors as you draw(note: inverses colors by position,
  56.         not color value, if in 32 color mode, color 1 becomes color 31)
  57.     CYCLE:
  58.         Normal drawing mode, but colors cycle through entire range as
  59.         mouse moves.
  60.  
  61.     NumPlanes:
  62.     Allows you to set # of bitplanes(colors) available. Will lose
  63.     any pictures.
  64.  
  65.     Res:
  66.     Allows you to change display resolutions. Will lose any pictures.
  67.  
  68.  
  69. /*============================================================================*/
  70.  
  71. Windows:
  72.     Tool Window:
  73.     Undo:    Restore picture to before last mouse click in
  74.         picture area.
  75.     Dot:    Chooses dot drawing mode. Draws pixel by pixel.
  76.     CLine:    Continious line drawing mode. Draws a connected line.
  77.     Line:    Straight line drawing mode.
  78.     UBox:    Unfilled box drawing mode.
  79.     FBox:    Filled box drawing mode.
  80.     Circl:    Circle drawing mode. Draws filled circles.
  81.     Ellip:    Ellipse drawing mode. Draws filled ellipses.
  82.     Fill:    Fills with current forground color.
  83.     Flood:    Fills outward to foreground color with foreground color.
  84.     Clear:    Clear Drawing mode. Click in picture, clears picture
  85.         to foreground color.
  86.     Pick:    For chooseing colors. Click on picture, selects that color
  87.         as foreground.
  88.  
  89.     Colors:
  90.         Click on color to choose new color.
  91.  
  92.     B:    Turn on background gadget to choose background color.
  93.     P:    Turn on Pattern gadget to draw in patterns(currently
  94.         only works with filled tools)
  95.         (hint: turn on cycle, choose a good background color,
  96.          and draw multiple filled boxes to see the effect of
  97.          patterns on color).
  98.  
  99.     Palette Window:
  100.     R+:    Increment Red value of all colors.
  101.     R-:    Decrement Red value of all colors.
  102.     B+:    Increment Blue value of all colors.
  103.     B-:    Decrement Blue value of all colors.
  104.     G+:    Increment Green value of all colors.
  105.     G-:    Decrement Green value of all colors.
  106.     Copy:    Copy foreground color to next selected color.
  107.     Xchg:    Exchange foreground color with next selected color.
  108.     3 sliders: Set RGB values of foreground color.
  109.     Colors: select a new foreground color.
  110.  
  111.     Hist Window:
  112.     All colors are displayed, zero at left, max at right, height of
  113.     color indicates usage in current picture.
  114.     Coord/Grid Window:
  115.     Upper portion indicates pointer coordinates.
  116.     Lower portion grid gadget turns grid on/off. Grid operates on
  117.     all drawing modes. int gadgets set x and y grid size.
  118.  
  119.